home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / gcc / gcc2.7.0 / gcc270cp.lha / gnu / lib / g++-include / std / stddef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  418 b   |  25 lines

  1. // The -*- C++ -*- standard definitions header.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __STDDEF__
  5. #define __STDDEF__
  6.  
  7. #ifdef __GNUG__
  8. #pragma interface "std/stddef.h"
  9. #endif
  10.  
  11. #include <_G_config.h>
  12. #include <std/cstddef.h>
  13.  
  14. const size_t NPOS = (size_t)(-1);
  15. typedef void fvoid_t();
  16.  
  17. #ifndef _WINT_T
  18. #define _WINT_T
  19. typedef _G_wint_t wint_t;
  20. #endif
  21.  
  22. enum capacity { default_size, reserve };
  23.  
  24. #endif
  25.